home *** CD-ROM | disk | FTP | other *** search
- Path: news.th-darmstadt.de!news
- From: Enno Sandner <enno@intellektik.informatik.th-darmstadt.de>
- Newsgroups: comp.lang.c++
- Subject: Re: What is "void CAClass::CBClass::functionname()" ????
- Date: Tue, 27 Feb 1996 09:03:58 +0100
- Organization: Fachbereich Informatik, TH Darmstadt
- Message-ID: <3132BAEE.167EB0E7@intellektik.informatik.th-darmstadt.de>
- References: <leetn-2602961058380001@192.43.251.144>
- NNTP-Posting-Host: kitz.intellektik.informatik.th-darmstadt.de
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 2.0 (X11; I; SunOS 4.1.3 sun4m)
-
- tlee wrote:
- >
- > I saw this syntax first time in MSVC++, MFC 4.0 source code.
- > They are all over the code relates to the OLE.
- >
- > Is this C++ standard or just some microsoftism?
- >
-
- 'functionname' is member of a nested class 'CBClass' which is
- enclosed in the class 'CAClass', i.e. its declaration looks like:
-
- class CAClass {
- ...
- class CBClass {
- ...
- void functionname();
- ...
- };
- ...
- };
-
-
- Enno
-